home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / unix / lnxn1a.zip / MAKETAG < prev    next >
Text File  |  1994-05-05  |  2KB  |  43 lines

  1. #!/bin/sh
  2. #item   ####description                                      ###on off ###
  3. rm -f /tmp/SeTnewtag # empty the return file
  4. dialog --title "SELECTING PACKAGES FOR SERIES N (NETWORK/NEWS/MAIL/UUCP)" \
  5.        --checklist "Please select the packages you wish to install \
  6. from series N. Use the \
  7. UP/DOWN keys to scroll through the list, and the SPACE key to select \
  8. the packages you wish to install. Recommended packages have \
  9. already been selected for you, but you may unselect them if you wish. \
  10. Press ENTER when you are \
  11. done." 22 70 11 \
  12. "netcfg" "A script to help configure TCP/IP" "on" \
  13. "deliver" "Local mail delivery utility" "off" \
  14. "dip" "Source code for dip v.3.3.7" "off" \
  15. "ppp" "Point-to-point protocol" "off" \
  16. "mailx" "The mailx mailer" "on" \
  17. "tcpip" "TCP/IP networking programs" "on" \
  18. "tracrout" "Source and binary of traceroute" "off" \
  19. "uucp" "Taylor UUCP 1.04 (HoneyDanBer configuration)" "off" \
  20. "elm" "Menu-driven user mail program" "off" \
  21. "pine" "Pine menu-driven mail program" "off" \
  22. "smail" "Ian Kluft's Linux port of Smail 3.1.28" "off" \
  23. "cnews" "Spools and transmits Usenet news" "off" \
  24. "inn_pkg" "InterNetNews news transport system" "off" \
  25. "nn" "The 'nn' news reader" "off" \
  26. "tin" "The 'tin' news reader" "off" \
  27. "trn" "A threaded news reader" "off" \
  28. 2> /tmp/SeTpkgs
  29. if [ $? = 1 -o $? = 255 ]; then
  30.  rm -f /tmp/SeTpkgs
  31.  exit
  32. fi
  33. cat /dev/null > /tmp/SeTnewtag
  34. for PACKAGE in deliver dip ppp mailx tcpip tracrout uucp netcfg \
  35. inn_pkg elm pine smail cnews nn tin trn ; do
  36.  if fgrep \"$PACKAGE\" /tmp/SeTpkgs 1> /dev/null 2> /dev/null ; then
  37.   echo "$PACKAGE: ADD" >> /tmp/SeTnewtag
  38.  else
  39.   echo "$PACKAGE: SKP" >> /tmp/SeTnewtag
  40.  fi
  41. done
  42. rm -f /tmp/SeTpkgs
  43.